home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Developers / MW MPW Binaries 1.1.1a2 / mwcPPC / MWCIncludes / SIOUX.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-26  |  876 b   |  35 lines  |  [TEXT/MMCC]

  1. /************************************************************************/
  2. /*  Project...: C++ and ANSI-C Compiler Environment                     */
  3. /*  Name......: SIOUX.h                                                   */
  4. /*  Purpose...: Interface functions to SIOUX                            */
  5. /*  Copyright.: ©Copyright 1993 by metrowerks inc. All rights reserved. */
  6. /************************************************************************/
  7.  
  8. #ifndef __SIOUX__
  9. #define __SIOUX__
  10.  
  11. #if __MWERKS__
  12. #pragma options align=mac68k
  13. #endif
  14.  
  15. //    Globals for setting the type and creator of new files ...
  16. extern ResType _fcreator, _ftype;
  17.  
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21.  
  22. //    Function Prototypes ...
  23. extern Boolean SetSIOUXTabMode(Boolean useSpaces, short spaceCount);
  24. extern int ccommand(char ***);
  25.  
  26. #ifdef __cplusplus
  27. }    
  28. #endif
  29.  
  30. #if __MWERKS__
  31. #pragma options align=reset
  32. #endif
  33.  
  34. #endif
  35.